home *** CD-ROM | disk | FTP | other *** search
/ Dos/V Magazine 1995 October 15 / CD [VMAG951015].bin / _demo / gambo / home.dxr / 00014.ls < prev    next >
Encoding:
Text File  |  1995-02-13  |  594 b   |  30 lines

  1. on startMovie
  2.   cursor(4)
  3.   set the mouseDownScript to EMPTY
  4.   set the timeoutScript to "go to frame 10"
  5.   set the timeoutLength to 2 * 60
  6.   puppetSound(0)
  7.   set the volume of sound 1 to 200
  8. end
  9.  
  10. on mselmovie
  11.   global movieselect
  12.   if movieselect = 0 then
  13.     set movieselect to 1
  14.     go(45, "Yasai.dxr")
  15.   else
  16.     if movieselect = 1 then
  17.       set movieselect to 2
  18.       go(2, "Closet.dxr")
  19.     else
  20.       if movieselect = 2 then
  21.         set movieselect to 3
  22.         go(1, "Danro.dxr")
  23.       else
  24.         set movieselect to 0
  25.         go(1, "K_Rdoor.dxr")
  26.       end if
  27.     end if
  28.   end if
  29. end
  30.